/* ===== CART DRAWER ===== */

#cart_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
}

#cart_overlay.active {
  opacity: 1;
  pointer-events: all;
}

#cart_drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 85%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  transition: 0.3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

#cart_drawer.active {
  bottom: 0;
}

/* HEADER */
#cart_header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  font-weight: bold;
}

/* BODY */
#cart_body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

/* ITEM */
.cart_item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.cart_item img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
}

.cart_item_details {
  flex: 1;
}

.qty_control {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* FOOTER */
#cart_footer {
  padding: 15px;
  border-top: 1px solid #eee;
}

#checkout_btn {
  width: 100%;
  background: black;
  color: white;
  padding: 12px;
  border: none;
  font-weight: bold;
}

/* Desktop override */
@media (min-width: 768px) {
  #cart_drawer {
    width: 400px;
    right: 0;
    left: auto;
    height: 100%;
    border-radius: 0;
  }
}
